*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 产品展示 */
.products-container{
    width: 100%;  
    /* max-width: 1600px; */
    margin: 10px auto;
}
.img-display{
    position: relative;
    width:100%;
    height:100vh;
    max-height: 1000px;
    max-width: 3000px;
    margin: 10px auto;
    
    background-color: #eaeaea;
    overflow: hidden;
}
.img-display .container{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    width:100%;
    /* max-width: 1600px; */
    height:100%;
    padding:50px;
    background-color: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}
.img-display #slide{
    width:max-content;
    margin-top:50px;
}
.img-display .item{
    width:200px;
    height:300px;
    background-position: 50% 50%;
    display: inline-block;
    transition: 0.5s;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top:50%;
    transform: translate(0,-50%);
    border-radius: 20px;
    box-shadow:  0 25px 50px #505050;
}
.img-display .item:nth-child(1),
.img-display .item:nth-child(2){
    left:0;
    top:0;
    transform: translate(0,0);
    border-radius: 0;
    width:100%;
    height:100%;
    box-shadow: none;
}
.img-display .item:nth-child(3){
    left:50%;
}
.img-display .item:nth-child(4){
    left:calc(50% + 220px);
}
.img-display .item:nth-child(5){
    left:calc(50% + 440px);
}
.img-display .item:nth-child(n+6){
    left:calc(50% + 660px);
    opacity: 0;
}
.img-display .item .content{
    position: absolute;
    top:50%;
    left:100px;
    width:300px;
    text-align: left;
    padding:0;
    color:#eee;
    transform: translate(0,-50%);
    display: none;
    font-family: system-ui;
}
.img-display .item:nth-child(2) .content{
    display: block;
    z-index: 11111;
}
.img-display .item .name{
    font-size: 40px;
    font-weight: bold;
    font-family: '华文中宋','宋体','仿宋';
    opacity: 0;
    animation:showcontent 1s ease-in-out 1 forwards
}
.img-display .item .des{
    margin:20px 0;
    opacity: 0;
    font-family: '仿宋', FangSong, '宋体', SimSun, '楷体', KaiTi, 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    animation:showcontent 1s ease-in-out 0.3s 1 forwards
}
.img-display .item button{
    padding:10px 20px;
    border:none;
    opacity: 0;
    font-family: '华文中宋', STZhongsong, '宋体', SimSun, '仿宋', FangSong, '楷体', KaiTi, 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    animation:showcontent 1s ease-in-out 0.6s 1 forwards
}
@keyframes showcontent{
    from{
        opacity: 0;
        transform: translate(0,100px);
        filter:blur(33px);
    }to{
        opacity: 1;
        transform: translate(0,0);
        filter:blur(0);
    }
}
.img-display .item button{
    border-radius: 5px;
    border: 1.5px solid #000000;
}
.img-display .item button a{
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}
.img-display .item button:hover{ 
    border-radius: 5px;    
    background-color: black;
}
.img-display .item button:hover a{
    color: #eaeaea;
    font-weight: bold;
}
.buttons{
    position: absolute;
    bottom:10px;
    left:50%;
    transform: translate(-50%,0);
    z-index: 99;
    text-align: center;
    width:100%;
}
.img-display .buttons button{
    width:50px;
    height:50px;
    border-radius: 50%;
    border:1px solid #555;
    transition: 0.5s;
}
.img-display .buttons button:hover{
    background-color: #bac383;
}
.porducts-title{
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-top: 100px;
}





/* 产品区域 */
:root{ --main-color: #e74c3c; }
.product-box{
    width: 100%;
    position: relative;
    max-width: 1500px;
    height: 80%;
    margin: 0px auto;
    /* margin-bottom: 20px; */
    background-color: #f5f5f5;
    /* border: red solid 1px; */
}


.product-grid{
    font-family: 'Roboto', sans-serif;
    /* position: relative; */
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
    padding: 5px;
    box-shadow: 1px 1px 5px 0px rgba(104, 104, 104, 0.75);
}
.product-grid .product-image{
    overflow: hidden;
    position: relative;
    height: 250px;
    border-radius: 10px;
}
.product-grid .product-image:before{
    content: "";
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.4s ease-out 0s;
}
.product-grid:hover .product-image:before{ opacity: 1; }
.product-grid .product-image a{ display: block; }
.product-grid .product-image img{
    width: 100%;
    height: auto;
}
.product-image .pic-1{
    opacity: 1;
    backface-visibility: hidden;
    transition: all 0.4s ease-out 0s;
}
.product-grid:hover .product-image .pic-1{ opacity: 0; }
.product-image .pic-2{
    width: 100%;
    height: 100%;
    opacity: 0;
    backface-visibility: hidden;
    transform: scale(3);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease-out 0s;
}
.product-grid:hover .product-image .pic-2 {
    opacity: 1;
    transform: scale(1);
}
.product-image .product-trend-label,
.product-image .product-discount-label{
    content: "";
    color: #fff;
    background-color: #2ecc71;
    font-size: 12px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 0 7px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    border-radius: 50px;
}
.product-image .product-discount-label{
    background-color: var(--main-color);
    left: auto;
    right: 12px;
}
.product-grid .social {
    padding: 0;
    margin: 0;
    list-style: none;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 10px;
    z-index: 4;
}
.product-grid .social li {
    margin: 0 0 12px;
    opacity: 0;
    transform: translateX(-60px);
    transition: transform .3s ease-out 0s;
}
.product-grid:hover .social li {
    opacity: 1;
    transform: translateX(0);
}
.product-grid:hover .social li:nth-child(2){ transition-delay: 0.1s; }
.product-grid:hover .social li:nth-child(3){ transition-delay: 0.2s; }
.product-grid:hover .social li:nth-child(4){ transition-delay: 0.3s; }
.product-grid .social li a {
    color: #fff;
    font-size: 22px;
    transition: all 0.3s;
}
.product-grid .social li a:hover { color: var(--main-color); }
.product-grid .social li a:before,
 .product-grid .social li a:after{
    content: attr(data-tip);
    color: #000;
    background: #fff;
    font-size: 14px;
    padding: 5px 10px;
    white-space: nowrap;
    display: none;
    transform: translateY(-50%);
    position: absolute;
    left: 33px;
    top: 50%;
    transition: all 0.3s;
}
.product-grid .social li a:after{
    content: '';
    background: linear-gradient(-45deg, #fff 49%, transparent 50%);
    width: 10px;
    height: 10px;
    top: 40%;
    left: 20px;
}
.product-grid .social li a:hover:before,
.product-grid .social li a:hover:after{
      display: block;
}
.product-grid .product-content{ padding: 12px 0; }
.product-grid .title{
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 10px 0 5px;
}
.product-grid .title a{ color: #959595; }
.product-grid .title a:hover{ color: var(--main-color); }
.product-grid .price{
    color: #333;
    font-size: 14px;
    font-weight: 400;
}
.product-grid .price span{
    color: #333;
    text-decoration: line-through;
    margin-right: 3px;
}
.product-grid .price.discount{ color: var(--main-color); }
@media only screen and (max-width:990px){
    .product-grid{ margin-bottom: 30px; }
}   

.product-box .title {
    padding-top: 15px
}
.product-box .title h1{
    margin-top: 50px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    display: block;
    width: 90px;
    border-left: #000 solid 2px;
    border-right: #000 solid 2px;
    margin-bottom: 30px;
    margin: 20px auto;
    color: #3a3a3a;
}
.product-box hr{
    margin: 10px;
    margin-bottom: 20px;
    height: 4px;
    background-color: #93200a;
}
.text1 a{
    margin-left: 20px;
    font-size: 18px;
    /* float: right; */
}
.text1 a:hover{
    color: #93200a;
    font-weight: bold
}
.porducts-title h1{
    font-family: '仿宋','宋体';
    font-size: 35px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #999;
}
.box-bottoom{
    height: 50px;
}